/* assets/css/pages/home/contact_cta.css */

.final-handshake {
    background: #000000;
    padding: 150px 0;
    font-family: 'JetBrains Mono', monospace;
    border-top: 1px solid rgba(139, 44, 245, 0.1);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-header { margin-bottom: 40px; }
.cta-index { color: #8b2cf5; font-weight: 900; letter-spacing: 5px; }
.cta-title { font-size: 3rem; letter-spacing: -2px; font-weight: 900; margin-top: 20px; }

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Secure Email Link Styling */
.email-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.secure-email {
    font-size: 2.2rem; /* Big impact email */
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -1px;
    transition: 0.4s;
    border-bottom: 2px solid rgba(139, 44, 245, 0.3);
    padding-bottom: 10px;
}

.secure-email:hover {
    color: #8b2cf5;
    border-bottom-color: #8b2cf5;
    text-shadow: 0 0 30px rgba(139, 44, 245, 0.5);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
}

.s-dot.blink {
    width: 8px; height: 8px;
    background: #00ff9c;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff9c;
    animation: pulse 1.5s infinite;
}

.cta-footnote {
    margin-top: 100px;
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.1);
}

@keyframes pulse { 50% { opacity: 0.2; } }

/* Mobile Responsive */
@media (max-width: 768px) {
    .secure-email { font-size: 1.2rem; }
    .cta-title { font-size: 2rem; }
}